Student Solution

-->

"Education is the most powerful weapon which you can use to change the world”
– Nelson Mandela

1 University

1 Course

2 Subjects

8.2 - The Shinydashboard Package

8.2 - The Shinydashboard Package

Q Creating Code Building on the Shiny application techniques of the from your earlier readings, you will create a dashboard application using the shinydashboard package. Data generated from the uniform probability and normal probability distributions will be used to generate our data sets. The graphs of our dashboard applications will present more detailed information about our data including summary statistics such as the mean, median, and standard deviation. To prepare for your assignment you will need to practice by recreating code contained in your readings. Develop the R code for the "Suggested project: Relocate the slider" found in this module's readings. Paste your R code and your output into a document. Submit your results for this assignment. ________________________________________ Save your assignment using a naming convention that includes your first and last name and the activity number (or description). Do not add punctuation or special characters.

View Related Questions

Solution Preview

Code: library(shinydashboard) ui <- dashboardPage( dashboardHeader( title = "Uniform Distribution" ), dashboardSidebar(), dashboardBody( fluidRow( box( title = "Select a Number", background = "yellow", status="warning", height = 312, sliderInput(inputId = "number", lable = "", value = 500, min = 25, max = 1000)),